home *** CD-ROM | disk | FTP | other *** search
/ This Disc Bytes! / Power Computing - The Disc 2 - This Disc Bytes.ISO / mac / CodeWarrior 7 Lite for 68K / MacOS Examples / MW AboutBox / main.c < prev   
C/C++ Source or Header  |  1995-12-05  |  370b  |  23 lines

  1. /* CodeWarrior Lite
  2.  * January 1996
  3.  * © 1996 Metrowerks, Corp.
  4.  */
  5.  
  6. void DoAboutBox(Boolean simpleAbout);
  7.  
  8. void main(void)
  9. {
  10.     InitGraf(&qd.thePort);
  11.     InitFonts();
  12.     FlushEvents(everyEvent - osMask - diskMask, 0);
  13.     InitWindows();
  14.     InitMenus();
  15.     TEInit();
  16.     InitDialogs(0L);
  17.     InitCursor();
  18.  
  19.     MaxApplZone();
  20.     MoreMasters();
  21.  
  22.     DoAboutBox(false);
  23. }